home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / libmat.lha / src / mneq.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  131b  |  8 lines

  1. //                MATRIX LIB
  2. //            TOMMY JOHANSSON 1995
  3.  
  4. #include "matrix.h"
  5. int Matrix::operator != (const Matrix& A)
  6. {
  7.     return(!(*this==A));
  8. }